home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / prgtools / prtsut53.zip / SU1CP_16.ZIP / GRAPHIT.PAS < prev    next >
Pascal/Delphi Source File  |  1997-12-30  |  405b  |  35 lines

  1. {
  2.   CBGraph - Graph Component
  3.  
  4.   Copyright (c), 1996, Calitz Bros.   All rights reserved
  5. }
  6.  
  7. unit Graphit;
  8.  
  9.  
  10. interface
  11.  
  12. uses
  13.   Classes,
  14.   DsgnIntf,
  15.   Dialogs,
  16.   SysUtils,
  17.   cb_grfun,
  18.   cb_dbgr,
  19.   cb_lab,
  20.   cb_graph;
  21.  
  22.  
  23. procedure Register;
  24.  
  25. implementation
  26.  
  27.   procedure Register;
  28.  
  29.   begin
  30.     RegisterComponents('Graphit',[TCB_Graph, TCB_DBGraph, TCB_Label]);
  31.   end;
  32.  
  33.  
  34. end.
  35.